c# run loop x times

58

c# run loop x times -

foreach (var i in Enumerable.Range(0, N))
{
    // do something
}

Comments

Submit
0 Comments